home *** CD-ROM | disk | FTP | other *** search
/ Financial Peace University Interactive Bonus / Financial Peace University Bonus Interactive CD-ROM.iso / pc / calculators / earlyPayoff.swf / scripts / DefineSprite_70 / frame_1 / DoAction.as
Encoding:
Text File  |  2007-09-19  |  420 b   |  16 lines

  1. textInput_txt.restrict = "0-9.";
  2. textInput_txt.onSetFocus = function()
  3. {
  4.    this._parent.attachMovie("carat","carat_mc",1000);
  5.    this._parent.carat_mc._x = 6 + this.text.length * 7;
  6.    this._parent.carat_mc._y = 3;
  7. };
  8. textInput_txt.onKillFocus = function()
  9. {
  10.    this._parent.carat_mc.removeMovieClip();
  11. };
  12. textInput_txt.onChanged = function()
  13. {
  14.    this._parent.carat_mc._x = 6 + this.text.length * 7;
  15. };
  16.